Overload | Description |
---|---|
Contain(KeyValuePair<TKey,TValue>[]) | Asserts that the current dictionary contains the specified expected. Key comparison will honor the equality comparer of the dictionary when applicable. Values are compared using their System.Object.Equals(System.Object) implementation. |
Contain(IEnumerable<KeyValuePair<TKey,TValue>>,String,Object[]) | Asserts that the current dictionary contains the specified expected. Key comparison will honor the equality comparer of the dictionary when applicable. Values are compared using their System.Object.Equals(System.Object) implementation. |
Contain(KeyValuePair<TKey,TValue>,String,Object[]) | Asserts that the current dictionary contains the specified expected. Key comparison will honor the equality comparer of the dictionary when applicable. Values are compared using their System.Object.Equals(System.Object) implementation. |
Contain(TKey,TValue,String,Object[]) | Asserts that the current dictionary contains the specified value for the supplied key. Key comparison will honor the equality comparer of the dictionary when applicable. Values are compared using their System.Object.Equals(System.Object) implementation. |
Contain(Expression<Func<KeyValuePair<TKey,TValue>,Boolean>>,String,Object[]) | (Inherited from FluentAssertions.Collections.GenericCollectionAssertions<TCollection,KeyValuePair<TKey,TValue>,TAssertions>) |